home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / ComCorn / Unit1.pas < prev    next >
Pascal/Delphi Source File  |  1999-10-11  |  712b  |  43 lines

  1. unit Unit1;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Button1: TButton;
  12.     procedure Button1Click(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. uses ComObj;
  25.  
  26. {$R *.DFM}
  27.  
  28. procedure TForm1.Button1Click(Sender: TObject);
  29. var
  30.   V1: OleVariant;
  31.   I: Integer;
  32.   T1: Cardinal;
  33. begin
  34.   V1 := CreateOleObject('Word.Application');
  35.   T1 := GetTickCount;
  36.   for I := 1 to 1000 do
  37.     V1.Caption := V1.Caption + 'x';
  38.   Caption := IntToStr(GetTickCount - T1);
  39.   V1.Visible := True;
  40. end;
  41.  
  42. end.
  43.